home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / progs / demo / amigaworld / installfont < prev    next >
Text File  |  1996-08-08  |  610b  |  19 lines

  1. ;AmigaWorld-Zeichensatz-Installation
  2. ;für Installer 1.24 oder besser
  3.  
  4. (complete 0)
  5.  
  6. (set @default-dest "FONTS:")
  7.  
  8. (if (askbool (prompt "Would you like to permanently install Faraway-Eyes font to your system?")
  9.              (default 1)
  10.              (help (cat "If you select yes then FarawayEyes font will be copied "
  11.                         "to your FONTS: directory. If you select no then AmigaWorld "
  12.                         "will only find its fond until your next boot-up.")))
  13.      (copyfiles (source "Fonts") (all)
  14.                 (dest "Fonts:"))
  15.      (run "c:assign Fonts: Fonts add")
  16. )
  17. (complete 100)
  18.  
  19.